-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[do not review] fix: remove explicit CXX from reflex third party #4595
Conversation
Signed-off-by: kostas <kostas@dragonflydb.io>
I am closing as the changes are not needed. Removing The interesting thing is that the value of The former, respects the value of This is problematic because Therefore I am forced to use |
It was impossible to compile dragonfly on my mac when
CXX
flag was set. The issue is that building the reflex lib explicitly set theCXX
toCMAKE_CXX_COMPILER
. However when the first is set in bash and the second is empty, cmake will try to resolve the value ofCMAKE_CXX_COMPILER
which would be different than the one set via the variableCXX
.